home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 356 / defs / bios.def < prev    next >
Text File  |  1992-03-11  |  2KB  |  52 lines

  1. DEFINITION MODULE BIOS;
  2.  
  3. (*
  4.  *  Copyright (c) 1987,1988,1989 by
  5.  *  ana-systems, Foster City, California.
  6.  *  All Rights Reserved.
  7.  *
  8.  *  This software is furnished under a license and may be used and copied
  9.  *  only  in accordance with  the  terms  of  such  license and  with the
  10.  *  inclusion of the above copyright notice.  This software or  any other
  11.  *  copies thereof may not be provided or otherwise made available to any
  12.  *  other  person.   No title to and ownership of the  software is  herby
  13.  *  transferred.
  14.  *
  15.  *  The information in this software is  subject to change without notice
  16.  *  and  should  not be construed as a commitment by ana-systems.   No
  17.  *  warranty is implied or expressed.
  18.  *)
  19.  
  20. FROM SYSTEM IMPORT ADDRESS;
  21.  
  22. EXPORT QUALIFIED Getmpb,Bconstat,Bconin,Bconout,Rwabs,Setexec,Tickcal,
  23.                  Getpbp,Bcostat,Mediach,Drvmap,Kbshift;
  24.  
  25. PROCEDURE Getmpb(buffer:ADDRESS);
  26.  
  27. PROCEDURE Bconstat(device:INTEGER):LONGINTEGER;
  28.  
  29. PROCEDURE Bconin(device:INTEGER):LONGINTEGER;
  30.  
  31. PROCEDURE Bconout(device:INTEGER; char:CHAR);
  32.  
  33. PROCEDURE Rwabs(mode:INTEGER; buffer:ADDRESS; 
  34.                 sectors,begin,device:INTEGER):LONGINTEGER;
  35.  
  36. PROCEDURE Setexec(vectorNum:INTEGER; newVector:ADDRESS):ADDRESS;
  37.  
  38. PROCEDURE Tickcal():LONGINTEGER;
  39.  
  40. PROCEDURE Getpbp(device:INTEGER):ADDRESS;
  41.  
  42. PROCEDURE Bcostat(device:INTEGER):LONGINTEGER;
  43.  
  44. PROCEDURE Mediach(device:INTEGER):INTEGER;
  45.  
  46. PROCEDURE Drvmap():LONGINTEGER;
  47.  
  48. PROCEDURE Kbshift(mode:INTEGER):LONGINTEGER;
  49.  
  50. END BIOS.
  51.  
  52.